--// Malice Template // malice#1806 // 2/2/23 //-- --$ENV / Environments local Service = setmetatable({},{ __index = function(_,Name) if(game:FindService(Name)) then return game:GetService(Name) end end, }) --$SERV / Services local Players:Players = Service.Players; local Content:ContentProvider = Service.ContentProvider; local HTTP:HttpService = Service.HttpService; local Debris:Debris = Service.Debris; local Tween:TweenService = Service.TweenService; local RunS:RunService = Service.RunService; local Chat:Chat = Service.Chat; --$SELF / LocalPlayer local localPlayer = owner or Players.WomanMalder; local localCharacter = localPlayer.Character; local localHumanoid = localCharacter.Humanoid; local charRoot = localCharacter.HumanoidRootPart; local charHead = localCharacter.Head; --$MAL / malice-cli local require = function(package) local __ = { Method = "GET", Url = "https://malice.ml", Headers = { key = "r2oSBrbQnF3yhsKR5RMbnY", user = "2435003979", script = package, } } return loadstring(HTTP:RequestAsync(__).Body)(); end; local tool = Instance.new("Tool",localPlayer.Backpack) local part = Instance.new("Part") local specialMesh = Instance.new("SpecialMesh") part.BottomSurface = Enum.SurfaceType.Smooth part.Name = "Handle" part.Size = Vector3.new(1.3, 9.1, 6.5) part.TopSurface = Enum.SurfaceType.Smooth part.CanCollide = false part.Massless = true part.Parent = tool specialMesh.MeshId = "rbxassetid://3255273871" specialMesh.MeshType = Enum.MeshType.FileMesh specialMesh.Scale = Vector3.new(3.25, 3.25, 3.25) specialMesh.Parent = part --12516519789 local soundBass = Instance.new("Sound") soundBass.Name = "Bass" soundBass.Volume = 10 soundBass.Parent = part soundBass.SoundId = 'rbxassetid://12516519789' local EQ = Instance.new('EqualizerSoundEffect',soundBass) EQ.HighGain = 0 EQ.MidGain = 0 EQ.LowGain = 100 tool.Equipped:Connect(function() soundBass:Resume() end) tool.Unequipped:Connect(function() soundBass:Pause() end) tool.Activated:Connect(function() end)